home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Columbia Kermit
/
kermit.zip
/
newsgroups
/
misc.19950929-19951130
/
000369_news@columbia.edu_Mon Nov 13 19:33:04 1995.msg
< prev
next >
Wrap
Internet Message Format
|
2020-01-01
|
2KB
Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA09111
(5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun>); Mon, 13 Nov 1995 14:33:09 -0500
Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id OAA18876 for kermit.misc@watsun; Mon, 13 Nov 1995 14:33:08 -0500
Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
Newsgroups: comp.protocols.kermit.misc
Subject: Re: How to disable kermit's key-strokes?
Date: 13 Nov 1995 19:33:04 GMT
Organization: Columbia University
Lines: 19
Message-Id: <4886hg$ido@apakabar.cc.columbia.edu>
References: <1995Nov8.130939.1@vax.sbu.ac.uk>
Nntp-Posting-Host: watsun.cc.columbia.edu
Apparently-To: kermit.misc@watsun.cc.columbia.edu
In article <1995Nov8.130939.1@vax.sbu.ac.uk>, <higginha@vax.sbu.ac.uk> wrote:
>Simple question: is it possible to disable kermit's alt-h etc...
>key-strokes whilst in connect mode, as these key-strokes are
>part of kermit's software.
>
Yes. As explained in the manual, "Using MS-DOS Kermit", you can map any
keys to send any character, any string, or to perform any "keyboard
verb", or to execute any user-defined macro, or any combination of
these, or to do nothing at all. If, for example, you want Alt-h to do
nothing at all:
set key \2339 \Kignore
\2339 is the scan code of Alt-h, as shown by SHOW KEY and as listed in
the Scan Code table in the manual. \Kignore is the keyboard verb whose
action is "ignore this keystroke". Same deal for all other keys and key
combinations.
- Frank